C# |
---|
public String AddLine(String text = null) |
C# |
---|
// Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false. var xb = new XMLBuilder(); // Example Method: // Adds text that ends with a newline. xb.AddLine("This is an appended line."); xb.AddText(":"); var result = xb.ToString(); // result: // This is an appended line. // : |